home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Forms Misc / strip-char.izs < prev    next >
Text File  |  2005-09-28  |  3KB  |  117 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Strip Characters 
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION>Strips the characters from an input string. You can change the characters you want removed from the string by changing one line of code.<!/DESCRIPTION> 
  7.  
  8. <!CATEGORY>Forms<!/CATEGORY>
  9.  
  10. <!SCRIPT>
  11. <!-- START OF SCRIPT -->
  12.  
  13. <!-- HOW TO INSTALL STRIP CHARACTERS:
  14.  
  15.   1.  Copy code into the HEAD section of document
  16.   2.  Put last coding into the BODY section of document  -->
  17.  
  18. <!-- STEP ONE: Add code into HEAD section of document  -->
  19.  
  20. <HEAD>
  21.  
  22. <SCRIPT LANGUAGE="JavaScript">
  23. <!-- Original:  Ryan A. Somma (ryan@waygate.com) -->
  24. <!-- Web Site:  http://www.waygate.com -->
  25.  
  26.  
  27.  
  28. <!-- Begin
  29. function stringFilter (input) {
  30. s = input.value;
  31. filteredValues = "1234567890";     // Characters stripped out
  32. var i;
  33. var returnString = "";
  34. for (i = 0; i < s.length; i++) {  // Search through string and append to unfiltered values to returnString.
  35. var c = s.charAt(i);
  36. if (filteredValues.indexOf(c) == -1) returnString += c;
  37. }
  38. input.value = returnString;
  39. }
  40. //  End -->
  41. </script>
  42. </HEAD>
  43.  
  44. <!-- STEP TWO: Add code into BODY section of document  -->
  45.  
  46. <BODY>
  47.  
  48. <font face=arial size=-2>
  49. <p>This demo form will filter out all numeric values from the form below.  Enter a combination of alpha and numeric characters and click "Submit" to view the results.
  50. </font>
  51. <form name=thisform method=post action="" onSubmit="">
  52. <input type=text size=14 maxlength=14 name=inputField>
  53. <br>
  54. <input type=button value="Submit" onClick="stringFilter(inputField);">
  55. <input type=reset value="Reset">
  56. </form>
  57.  
  58.  
  59.  
  60. <!-- END OF SCRIPT -->
  61. <!/SCRIPT>
  62.  
  63. <!PREVIEW>
  64. <!-- START OF SCRIPT -->
  65.  
  66. <!-- HOW TO INSTALL STRIP CHARACTERS:
  67.  
  68.   1.  Copy code into the HEAD section of document
  69.   2.  Put last coding into the BODY section of document  -->
  70.  
  71. <!-- STEP ONE: Add code into HEAD section of document  -->
  72.  
  73. <HEAD>
  74.  
  75. <SCRIPT LANGUAGE="JavaScript">
  76. <!-- Original:  Ryan A. Somma (ryan@waygate.com) -->
  77. <!-- Web Site:  http://www.waygate.com -->
  78.  
  79.  
  80.  
  81. <!-- Begin
  82. function stringFilter (input) {
  83. s = input.value;
  84. filteredValues = "1234567890";     // Characters stripped out
  85. var i;
  86. var returnString = "";
  87. for (i = 0; i < s.length; i++) {  // Search through string and append to unfiltered values to returnString.
  88. var c = s.charAt(i);
  89. if (filteredValues.indexOf(c) == -1) returnString += c;
  90. }
  91. input.value = returnString;
  92. }
  93. //  End -->
  94. </script>
  95. </HEAD>
  96.  
  97. <!-- STEP TWO: Add code into BODY section of document  -->
  98.  
  99. <BODY>
  100.  
  101. <font face=arial size=-2>
  102. <p>This demo form will filter out all numeric values from the form below.  Enter a combination of alpha and numeric characters and click "Submit" to view the results.
  103. </font>
  104. <form name=thisform method=post action="" onSubmit="">
  105. <input type=text size=14 maxlength=14 name=inputField>
  106. <br>
  107. <input type=button value="Submit" onClick="stringFilter(inputField);">
  108. <input type=reset value="Reset">
  109. </form>
  110.  
  111.  
  112.  
  113. <!-- END OF SCRIPT -->
  114. <!/PREVIEW>
  115.  
  116. <!RELATED>NONE<!/RELATED>
  117.